home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MOBJSIZE.PAS < prev    next >
Pascal/Delphi Source File  |  1995-12-15  |  644b  |  36 lines

  1. unit Mobjsize;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Mcombbox, MultLang;
  8.  
  9. type
  10.   TObjSize = class(TForm)
  11.     Label1: TLabel;
  12.     MultLang1: TMultLang;
  13.     Edit1: TEdit;
  14.     Button1: TButton;
  15.     MultLang2: TMultLang;
  16.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   ObjSize: TObjSize;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TObjSize.FormClose(Sender: TObject; var Action: TCloseAction);
  31. begin
  32.   Action:=caFree;
  33. end;
  34.  
  35. end.
  36.